com.supermap.data.license
Enum CloudLicenseType
- java.lang.Object
-
- java.lang.Enum<CloudLicenseType>
-
- com.supermap.data.license.CloudLicenseType
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CloudLicenseType>
public enum CloudLicenseType extends java.lang.Enum<CloudLicenseType>
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description CloudLicense_Develop
Development LicenseCloudLicense_Education
Educational LicenseCloudLicense_Formal
formal licenseCloudLicense_Staff
Employee LicensingCloudLicense_Trial
Trial License
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static CloudLicenseType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CloudLicenseType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CloudLicense_Trial
public static final CloudLicenseType CloudLicense_Trial
Trial License
-
CloudLicense_Formal
public static final CloudLicenseType CloudLicense_Formal
formal license
-
CloudLicense_Develop
public static final CloudLicenseType CloudLicense_Develop
Development License
-
CloudLicense_Education
public static final CloudLicenseType CloudLicense_Education
Educational License
-
CloudLicense_Staff
public static final CloudLicenseType CloudLicense_Staff
Employee Licensing
-
-
Method Detail
-
values
public static CloudLicenseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CloudLicenseType c : CloudLicenseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudLicenseType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-